home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 5791-.end / dmg-5873 / 3rdguide / mnmonics.txt < prev    next >
Text File  |  1998-10-24  |  4KB  |  69 lines

  1. DESKTOP ⑧x1k1                                 חללללללללללללל†
  2.                                  ´  MNEMONICS  ´
  3.                                  זללללללללללללל¶
  4. MOVE    :MOVE                           MOVEQ   :MOVE Quick
  5. MOVEA   :MOVE to an Address register    MOVEM   :MOVE Multiple registers
  6. MOVEP   :MOVE Peripheral data           CLR     :CLeaR
  7. AND     :logical AND                    ANDI    :logical AND Immediate
  8. OR      :logical OR                     ORI     :logical OR Immediate
  9. EOR     :logical Exclusive OR           EORI    :logical Exclusive OR Immediate
  10. NOT     :NOT
  11. BTST    :Bit TeST                       BCLR    :Bit test and CLeaR
  12. BSET    :Bit test and SET               BCHG    :Bit test and CHanGe
  13. Scc     :Set conditionnaly
  14. LSL     :Logical Shift Left             LSR     :Logical Shift Right
  15. ASL     :Arithmetical Shift Left        ASR     :Arithmetical Shift Right
  16. ROL     :ROtate Left                    ROR     :ROtate Right
  17. ROXL    :ROtate with X Left             ROXR    :ROtate with X Right
  18. EXG     :EXchanGe registers
  19. LEA     :Load Effective Address         PEA     :Push Effective Address
  20. LINK    :LINK stack                     UNLK    :UNLinK
  21. EXT     :sign EXTend                    SWAP    :SWAP register halves
  22. ADD     :ADD                            ADDI    :ADD Immediate
  23. ADDQ    :ADD Quick                      ADDA    :ADD to an Address register
  24. ADDX    :ADD with X                     ABCD    :Add in Binary Coded Decimal
  25. SUB     :SUBtract                       SUBI    :SUBtract Immediate
  26. SUBQ    :SUBtract Quick                 SUBA    :SUBtract to an Address regist.
  27. SUBX    :SUBtract with X                SBCD    :Subtract in Binary Coded Dec.
  28. NEG     :NEGate                         NEGX    :NEGate with X
  29. NBCD    :NEGate in Binary Coded Decimal
  30. CMP     :CoMPare                        CMPI    :CoMPare Immediate
  31. CMPA    :CoMPare to an Address register CMPM    :CoMPare Memory
  32. TST     :TeST
  33. MULU    :MULtiply Unsigned              MULS    :MULtiply Signed
  34. DIVU    :DIVide Unsigned                DIVS    :DIVide Signed
  35. NOP     :No OPeration                   JMP     :JuMP
  36. JSR     :Jump to SubRoutine             BSR     :Branch to SubRoutine
  37. RTS     :ReTurn of Subroutine           RTR     :ReTurn and Restore
  38. Bcc     :Branch conditionnaly
  39. DBcc    :test condition Decrement data register and Branch if different of -1
  40. -T      :True                           -F      :False
  41. -HI     :HIgher                         -LS     :Lower or Same
  42. -CC     :Carry Clear                    -CS     :Carry Set
  43. -HS     :Higher or Same                 -LO     :LOwer
  44. -NE     :Not Equal                      -EQ     :EQual
  45. -VC     :oVerflow Clear                 -VS     :oVerflow Set
  46. -PL     :PLus                           -MI     :MInus
  47. -GE     :Greater or Equal               -LT     :Lesser Than
  48. -GT     :Greater Than                   -LE     :Lesser or Equal
  49. -RA     :bRAnch always                  
  50. TRAP    :TRAP exception                 TRAPV   :TRAP on oVerflow exception
  51. CHK     :CHecK reg. against boundaries  ILLEGAL :ILLEGAL exception
  52. RTE     :ReTurn of Exception            
  53. TAS     :Test And Set
  54. RESET   :RESET external devices         STOP    :STOP
  55.  
  56. .B      :Byte                           .W      :Word
  57. .L      :Long word                      .S      :Short
  58.  
  59. Dn      :Data register #n               An      :Address register #n
  60. Rn      :Register #n                    PC      :Program Counter
  61. USP     :User Stack Pointer             SSP     :Supervisor Stack Pointer
  62. SP      :Stack Pointer                  SR      :Status Register
  63. CCR     :Code Condition Register        #k      :constant
  64. d       :displacement                   ( )     :indirect
  65. +       :post-incremented               -       :pre-decremented
  66. , :separator character for source and destination
  67. / :separator character used with MOVEM for indicate a jump in the list register
  68. - :separator character used with MOVEM for indicate a link in the list register
  69.